home *** CD-ROM | disk | FTP | other *** search
/ Super League / Super League.iso / TUTORIAL / CURSO / WHERE.DXR / 00037.ls < prev    next >
Encoding:
Text File  |  1997-03-25  |  215 b   |  15 lines

  1. on enterFrame
  2.   global var1, var2
  3.   if var1 < 22 then
  4.     set the visible of sprite 30 to 1
  5.   end if
  6.   if var1 >= 22 then
  7.     set the visible of sprite 31 to 1
  8.   end if
  9. end
  10.  
  11. on exitFrame
  12.   general()
  13.   go(#loop)
  14. end
  15.